home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Network Support Library
/
RoseWare - Network Support Library.iso
/
apidev
/
dax1.exe
/
MAKEINIT
< prev
Wrap
Text File
|
1992-07-15
|
2KB
|
53 lines
#
# This MAKEINIT can be used for all of the MAKEFILEs except the Windows
# client version. A separate version is provided for Windows clients.
#
#
# _dsk_drv is the drive where tools are stored. i.e. compilers/sdks/etc
# admin4f, a DOS environment variable, can be set to the driver letter
#
# if you don't define admin4f, then we default to O:
#
!ifdef %admin4f
_dsk_drv = $(%admin4f)
!else
_dsk_drv = o
!endif
#
# Change the following path to the location where you installed WATCOM C
#
ccpath=$(_dsk_drv):\p\novc286\20
#
# Change the following path to the location where you installed WATCOM C/386
#
c3path=$(_dsk_drv):\p\novc386\sdkb
#
# Change the following path to the location where you installed C XFace DOS
#
nwpath=$(_dsk_drv):\p\rel\cint\dos\v12
#
# Change the following path to the location where you installed NWCNLMs
#
n3path=$(_dsk_drv):\p\novc386\sdkc
wcc = $(ccpath)\bin\wcc # location of DOS compiler
wccp = $(ccpath)\bin\wccp # location of DOS protected compiler
wcc386 = $(c3path)\bin\wcc386 # location of 386 compiler
wcc386p = $(c3path)\bin\wcc386p # location of 386 protected compiler
linker = $(c3path)\binb\wlink # location of linker
librarian = $(c3path)\binb\wlib # location of librarian
inc_dir = $(ccpath)\h;$(nwpath)\inc # location of include files
inc_386 = $(n3path)\h # location of include files
code_386 = $(c3path)\bin\386wcgl.exe # location and name of 386 code generator
code_gen = $(ccpath)\bin\i86wcgl.exe # location and name of code generator
lib_dir = $(ccpath)\lib;$(nwpath)\watc # location of DOS libraries
startup = $(n3path)\imp\prelude # prelude module (start-up code)
clibimp = $(n3path)\imp\clib.imp # the clib import file
mathimp = $(n3path)\imp\mathlib.imp # the math import file